home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / tu32.zip / TU32DEMO / PROJTU / PROJTU.DPR next >
Text File  |  1995-07-19  |  278b  |  15 lines

  1. program Projtu;
  2.  
  3. uses
  4.   Forms,
  5.   Tumain in 'TUMAIN.PAS' {FormTUMain},
  6.   Vwerrdlg in 'VWERRDLG.PAS' {BtnBottomDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TFormTUMain, FormTUMain);
  12.   Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
  13.   Application.Run;
  14. end.
  15.